home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / visual / perl.exe / {app} / TabIndentSelection.pl < prev    next >
Encoding:
Text File  |  2003-01-11  |  185 b   |  10 lines

  1. # Get input from OptiPerl
  2. @lines = <STDIN>;
  3.  
  4. # Do now what you want with @lines and the rest of the variables
  5. foreach (@lines) {
  6.  $_ = "\t" . $_;
  7. }
  8.  
  9. #Send it back
  10. print @lines;